home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / misc / SP_ProjectMan.lha / SP-ProjectMan / Rexx / show.sman < prev   
Text File  |  1997-12-27  |  417b  |  22 lines

  1. /*
  2.  - show.sman
  3.  -
  4.  - ARexx program to display the content of a file.
  5.  - The display tool depends of the file extension.
  6.  - The tool is launched asynchronously.
  7.  -
  8.  - © Copyright 1995-1996 Bernard Krummenacher Silicon-Peace
  9.  -
  10.  - Bernard Krummenacher    Silicon-Peace 95.04.11    Created this file.
  11. */
  12.  
  13. parse arg FileName
  14.  
  15. options results
  16.  
  17. say FileName
  18.  
  19. address COMMAND 'run multiview >NIL: <NIL:' '"'FileName'"'
  20.  
  21. return 0
  22.